mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
25 lines
743 B
Bash
25 lines
743 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=supertuxkart-addons-karts
|
|
pkgver=0.7
|
|
pkgrel=2
|
|
pkgdesc="Additional karts for SuperTuxKart."
|
|
url="http://supertuxkart.sourceforge.net/"
|
|
arch=('any')
|
|
license=('custom:Unknown')
|
|
depends=('supertuxkart>=0.7')
|
|
makedepends=('unzip')
|
|
source=("http://downloads.sourceforge.net/project/supertuxkart/SuperTuxKart Add-ons/Add-ons 0.7/karts_addons_0.7.zip")
|
|
md5sums=('141165fc0a894c1216257261d3d54a1c')
|
|
|
|
package() {
|
|
install -d $pkgdir/usr/share/games/supertuxkart/
|
|
mv $srcdir/data $pkgdir/usr/share/games/supertuxkart/
|
|
}
|