mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
533 B
Bash
25 lines
533 B
Bash
pkgname=xclip
|
|
pkgver=0.12_20160201
|
|
pkgrel=1
|
|
pkgdesc="A command line utility that provides interface to Xclipboard."
|
|
arch=('x86_64')
|
|
url="http://sourceforge.net/projects/xclip"
|
|
license=('GPL')
|
|
depends=('libxmu' 'sh')
|
|
makedepends=('git')
|
|
categories=('utils')
|
|
source=('git+https://github.com/astrand/xclip#commit=e2dd115d66ecf5c772fd5359362990c17ee0defd')
|
|
sha1sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|