contrib/xclip/Pkgfile

24 lines
463 B
Plaintext
Raw Normal View History

2013-11-24 03:40:56 +01:00
# Description: A command line interface to the X11 clipboard
2016-06-13 00:32:31 +02:00
# URL: https://github.com/astrand/xclip
2021-02-04 23:54:47 +01:00
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
2013-11-24 03:40:56 +01:00
# Depends on: xorg-libxmu
name=xclip
2017-03-29 23:55:46 +02:00
version=0.13
2021-02-08 22:44:28 +01:00
release=3
source=(
https://github.com/astrand/${name}/archive/\
${version}/${name}-${version}.tar.gz
)
2013-11-24 03:40:56 +01:00
build() {
2021-02-08 22:44:28 +01:00
cd ${name}-${version}
2013-11-24 03:40:56 +01:00
2021-02-04 23:54:47 +01:00
./bootstrap
./configure --prefix=/usr
make
make DESTDIR="${PKG}" install
2013-11-24 03:40:56 +01:00
}
2021-02-04 23:54:47 +01:00
# s-sh-mode