You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
529 B
22 lines
529 B
10 years ago
|
# Maintainer: Patrik Plihal <patrik.plihal@gmail.com>
|
||
|
|
||
|
pkgname=ckan
|
||
|
pkgver=1.6.21
|
||
|
pkgrel=2
|
||
|
pkgdesc='All you need to find, install, and manage mods for Kerbal Space Program (ksp)'
|
||
|
arch=('any')
|
||
|
url="https://github.com/KSP-CKAN/CKAN/"
|
||
|
license=('MIT')
|
||
|
depends=('curl' 'mono')
|
||
|
|
||
|
source=("https://github.com/KSP-CKAN/CKAN/releases/download/v${pkgver}/ckan.exe")
|
||
|
md5sums=('36ca7cb245646ca3866e7bf0c120a520')
|
||
|
|
||
|
package() {
|
||
|
mkdir -p "$pkgdir/usr/bin/"
|
||
|
cp "$srcdir/ckan.exe" "$pkgdir/usr/bin/ckan"
|
||
|
chmod 755 "$pkgdir/usr/bin/ckan"
|
||
|
}
|
||
|
|
||
|
|