summaryrefslogtreecommitdiffstats
path: root/abs/extra-testing/mingetty/PKGBUILD
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/extra-testing/mingetty/PKGBUILD
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/extra-testing/mingetty/PKGBUILD')
-rw-r--r--abs/extra-testing/mingetty/PKGBUILD30
1 files changed, 0 insertions, 30 deletions
diff --git a/abs/extra-testing/mingetty/PKGBUILD b/abs/extra-testing/mingetty/PKGBUILD
deleted file mode 100644
index d24a8b5..0000000
--- a/abs/extra-testing/mingetty/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# Contributor: stonecrest <stonecrestATgmailDOTcom>
-pkgname=mingetty
-pkgver=1.08
-pkgrel=2
-pkgdesc="Designed to be a minimal getty and allows automatic logins."
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/mingetty"
-license=('GPL')
-depends=('glibc')
-makedepends=('gcc' 'make')
-provides=('mingetty')
-conflicts=('mingetty')
-md5sums=('2a75ad6487ff271424ffc00a64420990'
- 'b1bcb0668c34d4981e3acddc3990dfdb')
-source=(http://downloads.sourceforge.net/sourceforge/mingetty/$pkgname-$pkgver.tar.gz
- mingetty-utf8.patch)
-
-build() {
- patch $startdir/src/$pkgname-$pkgver/mingetty.c mingetty-utf8.patch || return 1
-
- mkdir -p $startdir/pkg/sbin || return 1
- mkdir -p $startdir/pkg/usr/man/man8 || return 1
-
- cd $startdir/src || return 1
- cd $startdir/src/$pkgname-$pkgver || return 1
-
- LDFLAGS="-s" make || return 1
- install -m 0755 mingetty $startdir/pkg/sbin || return 1
- install -m 0644 mingetty.8 $startdir/pkg/usr/man/man8 || return 1
-}