mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 14:47:15 +08:00
28 lines
877 B
Bash
28 lines
877 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=gwenhywfar
|
|
pkgver=4.0.7
|
|
pkgrel=1
|
|
pkgdesc="OS abstraction functions for various projects"
|
|
arch=(i686 x86_64)
|
|
url="http://www.aquamaniac.de"
|
|
options=('!libtool')
|
|
license=("LGPL")
|
|
depends=('openssl' 'gnutls' 'qt4')
|
|
source=("gwenhywfar-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=01&release=55&file=01&dummy=gwenhywfar-$pkgver.tar.gz")
|
|
md5sums=('d9f95ad9d0bee821ad373af5a57114e7')
|
|
|
|
build() {
|
|
cd $srcdir/gwenhywfar-4.0.2
|
|
./configure --prefix=/usr --sysconfdir=/etc --enable-ssl --with-guis=qt4
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|