mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 01:07:15 +08:00
26 lines
675 B
Bash
26 lines
675 B
Bash
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=gwenhywfar
|
|
pkgver=4.3.3
|
|
pkgrel=6
|
|
pkgdesc="OS abstraction functions for various projects"
|
|
arch=('x86_64')
|
|
url="http://www.aquamaniac.de"
|
|
options=('!libtool')
|
|
license=("LGPL")
|
|
depends=('openssl' 'qt' 'gnutls' 'libgcrypt')
|
|
source=("gwenhywfar-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=01&release=67&file=01&dummy=gwenhywfar-$pkgver.tar.gz")
|
|
md5sums=('c5b9d52a25960f84f9264a5a5dd484d1')
|
|
|
|
build() {
|
|
cd $srcdir/gwenhywfar-4.3.3
|
|
./configure --prefix=/usr --sysconfdir=/etc --enable-ssl --with-guis=qt4
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/gwenhywfar-4.3.3
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|