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/nmh | |
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/nmh')
-rw-r--r-- | community/nmh/APKBUILD | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/community/nmh/APKBUILD b/community/nmh/APKBUILD new file mode 100644 index 0000000000..d88ad8a12b --- /dev/null +++ b/community/nmh/APKBUILD @@ -0,0 +1,47 @@ +# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to> +# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to> +pkgname=nmh +pkgver=1.6 +pkgrel=0 +pkgdesc="nmh is a powerful electronic mail handling system" +url="http://www.nongnu.org/nmh/" +arch="all" +license="BSD" +depends="" +depends_dev="" +makedepends="openssl-dev ncurses-dev gnutls-dev readline-dev gdbm-dev" +install="" +subpackages="$pkgname-doc" +source="http://download.savannah.nongnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz" + +_builddir=${srcdir}/${pkgname}-${pkgver} +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --host=$CHOST \ + --build=$CBUILD \ + --prefix=/usr \ + --with-readline \ + --with-tls \ + --sysconfdir=/etc/nmh + make +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install +} + +md5sums="766ff2d37736aef76243df9c6610cb77 nmh-1.6.tar.gz" +sha256sums="29338ae2bc8722fe8a5904b7b601a63943b72b07b6fcda53f3a354edb6a64bc3 nmh-1.6.tar.gz" +sha512sums="03775e73f69eb21088e191f41a0bbc2e631956f0d496f87be97981ac2c85d8cbe0680e8ee7e37f97e79c34ccd814fca78f2684acfc8390e333a46c710fbdb2b7 nmh-1.6.tar.gz" |