Date: Thursday, July 25, 2013 @ 22:20:45 Author: jsteel Revision: 94488
Adding to community; makedep of banner Added: shhopt/ shhopt/repos/ shhopt/trunk/ shhopt/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Added: shhopt/trunk/PKGBUILD =================================================================== --- shhopt/trunk/PKGBUILD (rev 0) +++ shhopt/trunk/PKGBUILD 2013-07-25 20:20:45 UTC (rev 94488) @@ -0,0 +1,25 @@ +# Maintainer: jsteel <[email protected]> +# Contributor: Peter Simons <[email protected]> + +pkgname=shhopt +pkgver=1.1.7 +pkgrel=1 +pkgdesc="Library for parsing command line options" +arch=('i686' 'x86_64') +url="http://shh.thathost.com/pub-unix" +license=('GPL') +source=($url/files/$pkgname-$pkgver.tar.gz) +md5sums=('caf24206354296e8a48771aea1f47fbd') + +build() { + cd "$srcdir"/$pkgname-$pkgver + + make OPTIM="$CFLAGS" dep + make OPTIM="$CFLAGS" +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + + make OPTIM="$CFLAGS" INSTBASEDIR="$pkgdir"/usr/ install +}
