mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
825 B
Bash
27 lines
825 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
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=("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
|
|
}
|