summaryrefslogtreecommitdiff
path: root/community/swarp
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/swarp
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/swarp')
-rw-r--r--community/swarp/PKGBUILD28
-rw-r--r--community/swarp/config.mk13
2 files changed, 0 insertions, 41 deletions
diff --git a/community/swarp/PKGBUILD b/community/swarp/PKGBUILD
deleted file mode 100644
index 452a0aba8..000000000
--- a/community/swarp/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $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
deleted file mode 100644
index 12b3565be..000000000
--- a/community/swarp/config.mk
+++ /dev/null
@@ -1,13 +0,0 @@
-# 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}