mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 08:37:19 +08:00
31 lines
769 B
Bash
31 lines
769 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/community.git/tree/trunk?h=packages/xplanet
|
|
|
|
pkgname=xplanet
|
|
pkgver=1.3.0
|
|
pkgrel=3
|
|
pkgdesc="An Xearth wannabe"
|
|
arch=('x86_64')
|
|
url="http://xplanet.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('pango' 'giflib' 'libtiff' 'libxss')
|
|
source=("http://downloads.sourceforge.net/project/xplanet/xplanet/$pkgver/xplanet-$pkgver.tar.gz"
|
|
'giflib5.patch')
|
|
md5sums=('41f7db2ccd1d8b4b989cacaf9adfe692'
|
|
'c9b4504224bb5a8d6c3442fdaf1b9542')
|
|
|
|
prepare() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
patch -p1 <$srcdir/giflib5.patch
|
|
}
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --with-freetype
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
make prefix=${pkgdir}/usr install
|
|
}
|