diff options
author | ScrumpyJack <scrumpyjack@st.ilet.to> | 2016-06-27 10:17:05 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-07-04 11:42:28 +0200 |
commit | 2ff62bbb9f7b2c82a826d7b159c1bc482aa8f0bd (patch) | |
tree | 97c60fb3221dfe78cd7ccfda5db6125c81d5f676 /community/xeyes | |
parent | 00e8ff605f1c4f6386596f35f2a5287ff9b8bc55 (diff) | |
download | aports-2ff62bbb9f7b2c82a826d7b159c1bc482aa8f0bd.tar.bz2 aports-2ff62bbb9f7b2c82a826d7b159c1bc482aa8f0bd.tar.xz |
testing/[various]: move packages to community
Moves the packages listed below from the testing to the community
repository after successfully testing of said packages.
asciinema
at
calcurse
cmus
compton
cpio
dvd+rw-tools
fortune
fvwm
geary
h2o
heirloom-mailx
leafpad
nedit
nmh
rover
tor
torsocks
urlview
vdesk
w3m
wbar
xcalc
xclock
xeyes
xkill
Diffstat (limited to 'community/xeyes')
-rw-r--r-- | community/xeyes/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/xeyes/APKBUILD b/community/xeyes/APKBUILD new file mode 100644 index 0000000000..51128ffabd --- /dev/null +++ b/community/xeyes/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: ScrumpyJack <scrumpyjack@me.com> +# Maintainer: ScrumpyJack <scrumpyjack@me.com> +pkgname=xeyes +pkgver=1.1.1 +pkgrel=0 +pkgdesc="A pair of eyes that follow your mouse in X11" +url="http://www.x.org" +arch="all" +license="MIT" +depends="" +depends_dev="" +makedepends="libx11-dev libxt-dev libxext-dev libxmu-dev libxrender-dev" +install="" +subpackages="$pkgname-doc" +source="http://www.x.org/releases/individual/app/${pkgname}-${pkgver}.tar.bz2" + +_builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + --datarootdir=/usr/share \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="a3035dcecdbdb89e864177c080924981 xeyes-1.1.1.tar.bz2" +sha256sums="975e98680cd59e1f9439016386609546ed08c284d0f05a95276f96aca6e8a521 xeyes-1.1.1.tar.bz2" +sha512sums="3cb734239fa3180a9cc0eb2564c5a04f5e5c64ea314079c0604cebdbb821132f95a2c113dab476af8820308f0e6dbd4eac02b5da45dc2ed78a5d3ca010453618 xeyes-1.1.1.tar.bz2" |