summaryrefslogtreecommitdiff
path: root/community/xsel/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/xsel/PKGBUILD')
-rw-r--r--community/xsel/PKGBUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/community/xsel/PKGBUILD b/community/xsel/PKGBUILD
new file mode 100644
index 000000000..5a71a94a2
--- /dev/null
+++ b/community/xsel/PKGBUILD
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 17449 2010-05-24 10:42:48Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=xsel
+pkgver=1.2.0
+pkgrel=2
+pkgdesc="XSel is a command-line program for getting and setting the contents of the X selection"
+arch=(i686 x86_64)
+url="http://www.vergenet.net/~conrad/software/xsel/"
+license=("GPL")
+depends=(libxext libsm)
+source=(http://www.vergenet.net/~conrad/software/xsel/download/$pkgname-$pkgver.tar.gz)
+md5sums=('75983f143ce83dc259796c6eaf85c8f5')
+
+build() {
+ cd $startdir/src/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make || return 1
+ make DESTDIR=$startdir/pkg install
+}