mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=djl
|
|
pkgver=1.2.20
|
|
pkgrel=1
|
|
pkgdesc="Game manager inspired by Steam from Valve Software which makes it possible via a repository to download, install and remove a reasonable number of games."
|
|
arch=(i686 x86_64)
|
|
url="http://www.djl-linux.org/"
|
|
license=('gpl')
|
|
depends=('python2' 'pyqt' 'python-feedparser')
|
|
source=(http://www.djl-linux.org/maj_djl/Paquets-Arch/${pkgname}-${pkgver}-Arch.tar.gz)
|
|
md5sums=('51ae181e22f09bf91b20b0a1bde06b69')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname
|
|
mkdir -p $pkgdir/usr/share/djl
|
|
mkdir -p $pkgdir/usr/bin/
|
|
cp -fr $srcdir/$pkgname/* $pkgdir/usr/share/djl
|
|
chmod +x $pkgdir/usr/share/djl/djl.sh
|
|
echo "/usr/share/djl/djl.sh" > $pkgdir/usr/bin/djl
|
|
chmod +x $pkgdir/usr/bin/djl
|
|
}
|