mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
38 lines
934 B
Bash
38 lines
934 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=boost-build
|
|
pkgver=2.0_m12
|
|
pkgrel=1
|
|
pkgdesc="Boost build system."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.boost.org/doc/tools/build/"
|
|
license=('custom:Boost')
|
|
depends=('boost' 'gcc' 'python')
|
|
source=("http://downloads.sourceforge.net/sourceforge/boost/$pkgname-2.0-m12.tar.bz2"
|
|
"http://www.boost.org/LICENSE_1_0.txt")
|
|
md5sums=('38a40f1c0c2d6eb4f14aa4cf52e9236a'
|
|
'e4224ccaecb14d942c71d31bef20d78c')
|
|
|
|
package()
|
|
{
|
|
cd $srcdir
|
|
|
|
mkdir -p $pkgdir/usr/share
|
|
mkdir -p $pkgdir/etc
|
|
|
|
rm -Rf $pkgname/jam_src
|
|
|
|
cp -R $pkgname $pkgdir/usr/share
|
|
|
|
echo "using gcc ;" > $pkgdir/etc/site-config.jam
|
|
|
|
# License.
|
|
install -Dm 644 $srcdir/LICENSE_1_0.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|