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/xsel/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/xsel/PKGBUILD')
-rw-r--r-- | community/xsel/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/xsel/PKGBUILD b/community/xsel/PKGBUILD new file mode 100644 index 000000000..4a4e361ee --- /dev/null +++ b/community/xsel/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 65271 2012-02-20 12:44:04Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=xsel +pkgver=1.2.0 +pkgrel=5 +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=("custom") +depends=('libx11') +makedepends=('libxt') +source=(http://www.vergenet.net/~conrad/software/xsel/download/$pkgname-$pkgver.tar.gz) +md5sums=('75983f143ce83dc259796c6eaf85c8f5') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make + make DESTDIR=$pkgdir install + mkdir -p $pkgdir/usr/share/licenses/xsel/ + install -D -m0644 COPYING $pkgdir/usr/share/licenses/xsel/COPYING +} |