summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmilio Toledo2023-08-18 11:06:39 -0500
committerEmilio Toledo2023-08-18 11:06:39 -0500
commit2dab3b6b44a034f8423b096bfb252a29c0489fc5 (patch)
treeb43cf7e5b6ca409764d530990565619f0e895360
downloadaur-2dab3b6b44a034f8423b096bfb252a29c0489fc5.tar.gz
Initial commit
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD18
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2257362607e4
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+pkgbase = gitflow-cjs
+ pkgdesc = CJS Edition of the git extensions to provide high-level repository operations for Vincent Driessen's branching model.
+ pkgver = 2.2.0
+ pkgrel = 2
+ url = https://github.com/CJ-Systems/gitflow-cjs
+ arch = any
+ license = LGPL
+ depends = git
+ provides = gitflow
+ conflicts = gitflow
+ conflicts = gitflow-git
+ conflicts = gitflow-ahv
+ source = https://github.com/CJ-Systems/gitflow-cjs/archive/v2.2.0.tar.gz
+ sha512sums = 6ce37ccb2587c46fd2b5c7146cfac3d1c7d7aa84295f5a674c32cc42dde3aeaf124a269a1f1debc3272c80bff4677aed0899e2edae23b2d5db96fdc4c6602b72
+
+pkgname = gitflow-cjs
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..e3c2ed05758f
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Emilio Toledo <archlinux@emiliotoledo.me>
+pkgname=gitflow-cjs
+pkgver=2.2.0
+pkgrel=2
+pkgdesc="CJS Edition of the git extensions to provide high-level repository operations for Vincent Driessen's branching model."
+arch=("any")
+url="https://github.com/CJ-Systems/gitflow-cjs"
+license=("LGPL")
+depends=("git")
+provides=('gitflow')
+conflicts=('gitflow' 'gitflow-git' 'gitflow-ahv')
+source=("$url/archive/v$pkgver.tar.gz")
+sha512sums=("6ce37ccb2587c46fd2b5c7146cfac3d1c7d7aa84295f5a674c32cc42dde3aeaf124a269a1f1debc3272c80bff4677aed0899e2edae23b2d5db96fdc4c6602b72")
+
+package() {
+ cd "$pkgname-$pkgver"
+ make prefix="$pkgdir/usr" install
+} \ No newline at end of file