commit 52a9731d09bae3340684f5dadec269a2a0b519d2 Author: Patrik Plihal Date: Mon Jun 8 11:38:20 2015 +0200 Initial import diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..4e8ea17 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = ckan + pkgdesc = All you need to find, install, and manage mods for Kerbal Space Program (ksp) + pkgver = 1.6.21 + pkgrel = 2 + url = https://github.com/KSP-CKAN/CKAN/ + arch = any + license = MIT + depends = curl + depends = mono + source = https://github.com/KSP-CKAN/CKAN/releases/download/v1.6.21/ckan.exe + md5sums = 36ca7cb245646ca3866e7bf0c120a520 + +pkgname = ckan + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..d199e1f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Patrik Plihal + +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" +} + +