blob: 96038a94f6038b98d0c32cbe0f138afd6e820417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Contributor: Orion <systmkor@gmail.com>
# Maintainer: Orion <systmkor@gmail.com>
# Reference
# https://www.archlinux.org/packages/extra/x86_64/xclip/
pkgname=xclip
pkgver=0.12
pkgrel=0
pkgdesc="Command line interface to the X11 clipboard"
url="http://sourceforge.net/projects/xclip"
arch="x86 x86_64"
license="GPL2"
depends="libxmu"
depends_dev="libxmu-dev"
makedepends="$depends_dev"
install=""
subpackages="$pkgname-doc"
source="http://downloads.sourceforge.net/sourceforge/xclip/${pkgname}-${pkgver}.tar.gz"
_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la
}
md5sums="f7e19d3e976fecdc1ea36cd39e39900d xclip-0.12.tar.gz"
sha256sums="b7c7fad059ba446df5692d175c2a1d3816e542549661224806db369a0d716c45 xclip-0.12.tar.gz"
sha512sums="6c769878004c02d87b9eca2b33dc34edb40acc59be767a6481f207a74d52fca3725a040b0c8deffa1419b687bd73cf3124a090413c06787c0dd137b0ede795e0 xclip-0.12.tar.gz"
|