diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/swarp | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/swarp')
-rw-r--r-- | community/swarp/PKGBUILD | 28 | ||||
-rw-r--r-- | community/swarp/config.mk | 13 |
2 files changed, 41 insertions, 0 deletions
diff --git a/community/swarp/PKGBUILD b/community/swarp/PKGBUILD new file mode 100644 index 000000000..452a0aba8 --- /dev/null +++ b/community/swarp/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 65469 2012-02-21 05:57:41Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Dag Odenhall <dag.odenhall@gmail.com> + +pkgname=swarp +pkgver=0.1 +pkgrel=3 +pkgdesc="Simple pointer warp" +license=('MIT') +arch=(i686 x86_64) +url="http://tools.suckless.org/" +depends=(glibc libx11) +source=(http://dl.suckless.org/tools/swarp-$pkgver.tar.gz + config.mk) +md5sums=('b674dd2f33c45cbd789e4b6e09b7b55e' + '6fccb02af362a7284df689eea053a154') + +build() { + cd $srcdir/$pkgname-$pkgver + cp $srcdir/config.mk . + sed -i "s/%VERSION%/$pkgver/g" config.mk + sed -i "s/%CFLAGS%/$CFLAGS/g" config.mk + + make + make DESTDIR=$pkgdir install + + install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/COPYING +} diff --git a/community/swarp/config.mk b/community/swarp/config.mk new file mode 100644 index 000000000..12b3565be --- /dev/null +++ b/community/swarp/config.mk @@ -0,0 +1,13 @@ +# Customized for Arch Linux <http://archlinux.org> + +VERSION = %VERSION% +PREFIX = /usr +MANPREFIX = ${PREFIX}/man +X11INC = ${PREFIX}/include/X11 +X11LIB = ${PREFIX}/lib/X11 +INCS = -I. -I${PREFIX}/include -I${X11INC} +LIBS = -L${PREFIX}/lib -lc -L${X11LIB} -lX11 +CFLAGS = %CFLAGS% ${INCS} -DVERSION=\"${VERSION}\" +LDFLAGS = ${LIBS} +CC = cc +LD = ${CC} |