From 3e7ccf468154c7c896f6a3ea5ce34c0438543e63 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Wed, 7 Jan 2026 04:49:09 -0500 Subject: [PATCH] clean: remove lfs/check check is no longer in the lfs scoop --- lfs/check-0.15.2.PKGBUILD | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 lfs/check-0.15.2.PKGBUILD diff --git a/lfs/check-0.15.2.PKGBUILD b/lfs/check-0.15.2.PKGBUILD deleted file mode 100644 index e95a6b7..0000000 --- a/lfs/check-0.15.2.PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -pkgname=check -pkgver=0.15.2 -pkgdesc="A unit testing framework for C" -homepage="https://libcheck.github.io/check/" -arch=(x86_64) -license=(LGPL) -sources=("${pkgname}-${pkgver}.tar.gz") -urls=("https://github.com/libcheck/check/releases/download/${pkgver}/${sources[0]}") -md5sums=("50fcafcecde5a380415b12e9c574e0b2") - -src_prepare() { - tar -xf ${distdir}/${sources[0]} --strip-components=1 -} - -src_build() { - ./configure --prefix=/usr --disable-static - make -} - -src_check() { - make check -} - -src_install() { - make DESTDIR="${pkgdir}" docdir=/usr/share/doc/check-${pkgver} install -}