mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 16:04:37 +08:00
28 lines
861 B
Bash
28 lines
861 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=3.11.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="OS abstraction functions for various projects"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://www.aquamaniac.de"
|
||
|
options=('!libtool')
|
||
|
license=("LGPL")
|
||
|
depends=('openssl')
|
||
|
source=("gwenhywfar-$pkgver.tar.gz::http://www2.aquamaniac.de/sites/download/download.php?package=01&release=31&file=01&dummy=gwenhywfar-$pkgver.tar.gz")
|
||
|
md5sums=('9ab62d881a0f39d4b07ea0badff7201f')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/gwenhywfar-$pkgver
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --enable-ssl
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|