mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 10:44:37 +08:00
23 lines
567 B
Bash
23 lines
567 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
||
|
|
||
|
pkgname=bdw-gc
|
||
|
pkgver=7.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="BDW-GC is a garbage collection library."
|
||
|
url="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('Unknown')
|
||
|
depends=()
|
||
|
source=(http://hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-${pkgver}.tar.gz)
|
||
|
md5sums=('2ff9924c7249ef7f736ecfe6f08f3f9b')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/gc-${pkgver}"
|
||
|
./configure --prefix=/usr
|
||
|
make LDFLAGS+="-lpthread"
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|