summaryrefslogtreecommitdiff
path: root/community/mg/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/mg/PKGBUILD
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/mg/PKGBUILD')
-rw-r--r--community/mg/PKGBUILD34
1 files changed, 0 insertions, 34 deletions
diff --git a/community/mg/PKGBUILD b/community/mg/PKGBUILD
deleted file mode 100644
index be271595b..000000000
--- a/community/mg/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id: PKGBUILD 62917 2012-01-29 07:15:53Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: Hannes Rist <hrist@phreeknet.org>
-
-pkgname=mg
-pkgver=20110905
-pkgrel=1
-pkgdesc="mg is Micro GNU/emacs, this is a portable version of the mg maintained by the OpenBSD team."
-arch=('i686' 'x86_64')
-url="http://homepage.boetes.org/software/mg/"
-depends=('ncurses')
-license=('custom')
-options=(!libtool)
-source=(http://homepage.boetes.org/software/mg/mg-$pkgver.tar.gz
- README
- cleanup.patch)
-md5sums=('2de35316fa8ebafe6003efaae70b723e'
- '8cc5195ad4fabcf7c6782764f9617748'
- 'e009afe0d249593f3436b2fea110f72e')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- unset CFLAGS
- patch -p1 <$srcdir/cleanup.patch
- ./configure
- make prefix=/usr
-
- mkdir -p $pkgdir/usr/bin
- make install INSTALL=/bin/install prefix=$pkgdir/usr
-
- mkdir -p $pkgdir/usr/share/
- mv $pkgdir/usr/man $pkgdir/usr/share/
- install -D -m0644 $srcdir/README $pkgdir/usr/share/licenses/$pkgname/README
-}