mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:07:13 +08:00
33 lines
856 B
Bash
33 lines
856 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Contributions from Arch:
|
|
# https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/aspell
|
|
|
|
pkgname=aspell
|
|
pkgver=0.60.6.1
|
|
_pkgmajorver=0.60
|
|
pkgrel=2
|
|
pkgdesc="A spell checker designed to eventually replace Ispell"
|
|
url="http://aspell.net/"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
depends=('gcc-libs' 'ncurses')
|
|
optdepends=('perl: to import old dictionaries')
|
|
options=(!libtool)
|
|
install=aspell.install
|
|
source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('e66a9c9af6a60dc46134fdacf6ce97d7')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
ln -s ${pkgname}-${_pkgmajorver} "${pkgdir}/usr/lib/${pkgname}"
|
|
}
|