aspell-lv: switch upstream and update to 0.9.3

This commit is contained in:
Rihards Skuja 2023-02-20 10:28:19 +02:00
parent d34e6dde0b
commit e3582c44a5
Signed by: rhssk
GPG Key ID: BABE7EB1F38C7EF6
3 changed files with 17 additions and 19 deletions

View File

@ -1,16 +1,12 @@
pkgbase = aspell-lv pkgbase = aspell-lv
pkgdesc = Latvian aspell dictionary pkgdesc = Latvian aspell dictionary
pkgver = 0.5.5 pkgver = 0.9.3
pkgrel = 4 pkgrel = 1
url = https://ftp.gnu.org/gnu/aspell/dict/0index.html url = http://dict.dv.lv/download.php?prj=lv
arch = any arch = any
license = GPL2 license = GPL2
depends = aspell depends = aspell
source = https://ftp.gnu.org/gnu/aspell/dict/lv/aspell6-lv-0.5.5-1.tar.bz2 source = http://dict.dv.lv/download/aspell6-lv-0.9.3.tar.bz2
source = https://ftp.gnu.org/gnu/aspell/dict/lv/aspell6-lv-0.5.5-1.tar.bz2.sig sha256sums = f14cdaf36a676e966cfe4ba9071c2b14c06d66153763eae13dc0e53838f74097
validpgpkeys = 31A768B0808E4BA619B48F81B6D9D0CC38B327D7
sha256sums = 3c30e206ea562b2e759fb7467680e1a01d5deec5edbd66653c83184550d1fb8a
sha256sums = SKIP
pkgname = aspell-lv pkgname = aspell-lv

4
aspell-lv/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*
!/PKGBUILD
!/.SRCINFO
!/.gitignore

View File

@ -1,28 +1,26 @@
# Maintainer: Rihards Skuja <rhssk at posteo dot eu> # Maintainer: Rihards Skuja <rhssk at posteo dot eu>
# Contributor: Andrejs Mivreņiks <gim at fastmail dot fm> # Contributor: Andrejs Mivreņiks <gim at fastmail dot fm>
# Contributor: ArmandasJ <armandas@gmail.com> # Contributor: ArmandasJ <armandas@gmail.com>
pkgname=aspell-lv pkgname=aspell-lv
pkgver=0.5.5 pkgver=0.9.3
pkgrel=4 pkgrel=1
pkgdesc='Latvian aspell dictionary' pkgdesc='Latvian aspell dictionary'
arch=('any') arch=('any')
depends=('aspell') depends=('aspell')
url='https://ftp.gnu.org/gnu/aspell/dict/0index.html' url='http://dict.dv.lv/download.php?prj=lv'
source=("https://ftp.gnu.org/gnu/aspell/dict/lv/aspell6-lv-$pkgver-1.tar.bz2" source=("http://dict.dv.lv/download/aspell6-lv-$pkgver.tar.bz2")
"https://ftp.gnu.org/gnu/aspell/dict/lv/aspell6-lv-$pkgver-1.tar.bz2.sig")
license=('GPL2') license=('GPL2')
sha256sums=('3c30e206ea562b2e759fb7467680e1a01d5deec5edbd66653c83184550d1fb8a' sha256sums=('f14cdaf36a676e966cfe4ba9071c2b14c06d66153763eae13dc0e53838f74097')
'SKIP')
validpgpkeys=('31A768B0808E4BA619B48F81B6D9D0CC38B327D7')
build() { build() {
cd "$srcdir/aspell6-lv-$pkgver-1" cd "$srcdir/aspell6-lv-$pkgver"
./configure ./configure
make make
} }
package() { package() {
cd "$srcdir/aspell6-lv-$pkgver-1" cd "$srcdir/aspell6-lv-$pkgver"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
install -Dm655 COPYING "$pkgdir/usr/share/licenses/custom/$pkgname/COPYING" install -Dm655 COPYING "$pkgdir/usr/share/licenses/custom/$pkgname/COPYING"
} }