mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
22 lines
632 B
Bash
22 lines
632 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer : Tom Killian <tom@archlinux.org>
|
||
|
# Contributor: Nikos Kouremenos (zeppelin) kourem at gmail dot com
|
||
|
|
||
|
pkgname=autocutsel
|
||
|
pkgver=0.9.0
|
||
|
pkgrel=2
|
||
|
pkgdesc="synchronizes the two copy/paste buffers mainly used by X applications"
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('libxaw')
|
||
|
source=(http://lepton.fr/tools/autocutsel/autocutsel-$pkgver.tar.gz)
|
||
|
md5sums=('ba4a6f632cb4815ae4e5c3027c24cfc5')
|
||
|
url="http://lepton.fr/tools/autocutsel/"
|
||
|
license=('GPL')
|
||
|
build()
|
||
|
{
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make prefix=$startdir/pkg/usr install
|
||
|
}
|