diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-09-01 15:57:25 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-09-01 15:57:25 -0500 |
commit | 5fd75e917c02a2818ab11bd5dbbdfe999cd169fb (patch) | |
tree | 7200973ed313c91000d90dd9c9041e22cc97840c | |
parent | b7676bace29b7713e4460cf3f23652b06d981340 (diff) | |
download | abslibre-5fd75e917c02a2818ab11bd5dbbdfe999cd169fb.tar.gz abslibre-5fd75e917c02a2818ab11bd5dbbdfe999cd169fb.tar.bz2 abslibre-5fd75e917c02a2818ab11bd5dbbdfe999cd169fb.zip |
Removing cunit: This package is in [community] repo
-rw-r--r-- | pcr/cunit/PKGBUILD | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/pcr/cunit/PKGBUILD b/pcr/cunit/PKGBUILD deleted file mode 100644 index f8d788abb..000000000 --- a/pcr/cunit/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# Contributor (Arch): Danibspi danibspi <at> gmail <dot> com -# Contributor (Arch): Daniel Milde <daniel@milde.cz> - -pkgname=cunit -pkgver=2.1.3 -pkgrel=2 -pkgdesc="Lightweight system for writing, administering, and running unit tests in C" -arch=(i686 x86_64) -url="http://cunit.sourceforge.net/" -license=('LGPL2') -depends=('glibc') -options=('!libtool') -source=(https://downloads.sourceforge.net/project/cunit/CUnit/2.1-3/CUnit-2.1-3.tar.bz2) -md5sums=('b5f1a9f6093869c070c6e4a9450cc10c') - -build() { - cd "$srcdir/CUnit-2.1-3" - libtoolize --force - aclocal - autoheader - automake --force-missing --add-missing - autoconf - ./configure --prefix=/usr - make || return 1 -} - -package() { - cd "$srcdir/CUnit-2.1-3" - make DESTDIR="$pkgdir" install - mv $pkgdir/usr/doc $pkgdir/usr/share/doc -} |