summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD6
3 files changed, 9 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 349e7a2c8343..8a95f30a1b4c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,14 +1,13 @@
pkgbase = just
- pkgdesc = Just a command runner, like make.
+ pkgdesc = A handy way to save and run project-specific commands
pkgver = 0.3.10
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/casey/just
arch = x86_64
arch = i686
license = custom:WTFPL
license = custom:MIT
license = APACHE
- license = https://github.com/casey//blob/master/LICENSE
makedepends = cargo
depends = gcc-libs
source = just-0.3.10.tar.gz::https://github.com/casey/just/archive/v0.3.10.tar.gz
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..df3d4ff93ff2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+just-*.pkg.tar.xz
+just-*.tar.gz
+pkg/
+src/
diff --git a/PKGBUILD b/PKGBUILD
index 5daa8be5fe40..6e1c030cb22a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,11 +2,11 @@
pkgname=just
pkgver=0.3.10
-pkgrel=1
-pkgdesc="Just a command runner, like make."
+pkgrel=2
+pkgdesc="A handy way to save and run project-specific commands"
arch=("x86_64" "i686")
url="https://github.com/casey/${pkgname}"
-license=("custom:WTFPL" "custom:MIT" "APACHE" "https://github.com/casey/${pgkname}/blob/master/LICENSE")
+license=("custom:WTFPL" "custom:MIT" "APACHE")
depends=("gcc-libs")
makedepends=("cargo")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/casey/${pkgname}/archive/v${pkgver}.tar.gz")