Add xsel package.

This commit is contained in:
Doron Behar 2019-06-03 15:39:30 +03:00 committed by Yaksh Bariya
parent 5b37e64de0
commit b7cebd020b
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
TERMUX_PKG_HOMEPAGE=http://www.kfish.org/software/xsel/
TERMUX_PKG_DESCRIPTION="Command-line program for getting and setting the contents of the X selection"
TERMUX_PKG_LICENSE="custom"
TERMUX_PKG_MAINTAINER="Doron Behar <me@doronbehar.com>"
TERMUX_PKG_VERSION=1.2.0.20190505
_commit=24bee9c7f4dc887eabb2783f21cbf9734d723d72
TERMUX_PKG_REVISION=1
TERMUX_PKG_DEPENDS="libx11"
TERMUX_PKG_BUILD_DEPENDS="libxt"
termux_step_extract_package() {
mkdir -p $TERMUX_PKG_SRCDIR
cd $TERMUX_PKG_SRCDIR
git clone https://github.com/kfish/xsel
cd xsel
git checkout $_commit
./autogen.sh --prefix=$TERMUX_PREFIX
}
termux_step_make() {
cd $TERMUX_PKG_SRCDIR/xsel
make
}
termux_step_make_install() {
cd $TERMUX_PKG_SRCDIR/xsel
make install
install -D -m0644 COPYING $TERMUX_PREFIX/share/LICENSES/xsel.txt
}