aboutsummaryrefslogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMichael Czigler <37268479+mcpcpc@users.noreply.github.com>2020-09-03 08:29:13 -0400
committerGitHub <noreply@github.com>2020-09-03 08:29:13 -0400
commitbf41604e016fa10aa504863e7a8bf7c43a0dd8ec (patch)
tree48b274a1c7eaffe07c053dd4983678cb6ed1e17f /PKGBUILD
parentCreate PKGBUILD (diff)
downloadkirc-bf41604e016fa10aa504863e7a8bf7c43a0dd8ec.tar.gz
kirc-bf41604e016fa10aa504863e7a8bf7c43a0dd8ec.tar.bz2
kirc-bf41604e016fa10aa504863e7a8bf7c43a0dd8ec.tar.xz
kirc-bf41604e016fa10aa504863e7a8bf7c43a0dd8ec.tar.zst
kirc-bf41604e016fa10aa504863e7a8bf7c43a0dd8ec.zip
Delete PKGBUILD
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD32
1 files changed, 0 insertions, 32 deletions
diff --git a/PKGBUILD b/PKGBUILD
deleted file mode 100644
index 955a1ea..0000000
--- a/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-pkgname=kirc-git
-pkgver=0.0.6.r0.6a019c7
-pkgrel=1
-pkgdesc="KISS for IRC, an IRC client written in POSIX C99"
-arch=(any)
-url="https://github.com/mcpcpc/kirc"
-license=('MIT')
-makedepends=('git')
-provides=("${pkgname%-git}")
-conflicts=("${pkgname%-git}")
-replaces=()
-backup=()
-options=()
-install=
-source=('kirc::git+https://github.com/mcpcpc/kirc.git')
-md5sums=('SKIP')
-
-pkgver() {
- cd "$srcdir/${pkgname%-git}"
-
- printf "%s" "$(git describe --tags --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
-}
-
-build() {
- cd "$srcdir/${pkgname%-git}"
- make
-}
-
-package() {
- cd "$srcdir/${pkgname%-git}"
- make DESTDIR="$pkgdir" install
-}