initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

27
gtkspellmm/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=gtkspellmm
pkgver=3.0.5
pkgrel=2
pkgdesc="C++ binding for gtkspell"
arch=('i686' 'x86_64')
url='http://gtkspell.sourceforge.net/'
license=('GPL-2')
depends=('gtkmm' 'gtkspell3')
source=("https://downloads.sourceforge.net/gtkspell/$pkgname-$pkgver.tar.xz")
sha512sums=('23e67e8519dce80a55bafeb9f63b5e4f78fbf2960d13435f89a9718d424f960188d8ade835e0ba74fec8eeca1d5b00350e2bc1a10165969e26656f14d8a9b133')
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install doc_subdirs=
make -C doc DESTDIR="$pkgdir" install
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
}