mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
672 B
Bash
21 lines
672 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
|
|
pkgname=xsel
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
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
|
|
}
|