diff options
author | root <root@rshg054.dnsready.net> | 2013-07-26 01:14:24 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-26 01:14:24 -0700 |
commit | 09c5dbb237be55059b6816f81295f2f122742a0a (patch) | |
tree | 1e175dc5bb6de2e61d52b8fba36b6fea52517685 /community/shhopt | |
parent | d184897bb273331edc2aa9c37f6514f9956c58f4 (diff) |
Fri Jul 26 01:13:58 PDT 2013
Diffstat (limited to 'community/shhopt')
-rw-r--r-- | community/shhopt/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/shhopt/PKGBUILD b/community/shhopt/PKGBUILD new file mode 100644 index 000000000..701b32fdb --- /dev/null +++ b/community/shhopt/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: jsteel <jsteel@aur.archlinux.org> +# Contributor: Peter Simons <simons@cryp.to> + +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 +} |