diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/aspell | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_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/core-testing/aspell')
-rw-r--r-- | abs/core-testing/aspell/PKGBUILD | 31 | ||||
-rw-r--r-- | abs/core-testing/aspell/aspell.install | 23 |
2 files changed, 0 insertions, 54 deletions
diff --git a/abs/core-testing/aspell/PKGBUILD b/abs/core-testing/aspell/PKGBUILD deleted file mode 100644 index 8d584b9..0000000 --- a/abs/core-testing/aspell/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: PKGBUILD 19099 2008-11-14 21:50:10Z thayer $ -# Contributor: Jochem Kossen <j.kossen@home.nl> -# Contributor: dorphell <dorphell@archlinux.org> -# Maintainer: Thayer Williams <thayer@archlinux.org> - -pkgname=aspell -pkgver=0.60.6 -_pkgmajorver=0.60 -pkgrel=4 -pkgdesc="A spell checker designed to eventually replace Ispell" -url="http://aspell.net/" -arch=('i686' 'x86_64') -license=('LGPL') -depends=('gcc-libs' 'ncurses>=5.6-7') -optdepends=('perl: to import old dictionaries') -options=(!libtool) -install=aspell.install -source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('bc80f0198773d5c05086522be67334eb') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr || return 1 - make || return 1 - make DESTDIR=${pkgdir} install || return 1 - ln -s ${pkgname}-${_pkgmajorver} ${pkgdir}/usr/lib/${pkgname} || return 1 - - # cleanup info files - rm ${pkgdir}/usr/share/info/dir || return 1 - gzip ${pkgdir}/usr/share/info/* || return 1 -} diff --git a/abs/core-testing/aspell/aspell.install b/abs/core-testing/aspell/aspell.install deleted file mode 100644 index 2747f02..0000000 --- a/abs/core-testing/aspell/aspell.install +++ /dev/null @@ -1,23 +0,0 @@ -infodir=/usr/share/info -filelist=(aspell.info aspell-dev.info) - -post_install() { - for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null - done - echo "==> aspell comes with no default dictionary" -} - -post_upgrade() { - for file in ${filelist[@]}; do - install-info $infodir/$file $infodir/dir 2> /dev/null - done -} - -pre_remove() { - for file in ${filelist[@]}; do - install-info --delete $infodir/$file $infodir/dir 2> /dev/null - done -} - -# vim:set ts=2 sw=2 et: |