summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2023-01-05 14:01:11 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2023-01-05 14:01:11 +0100
commit7bb6e0926b93898c79b0b1b5010eb18840267027 (patch)
treee8d639ae776ab57bbdad7adb2d96a1dc3f4499e5
parent200cac714af64cbe41c0144f73cd1283eac8230e (diff)
downloadarch-7bb6e0926b93898c79b0b1b5010eb18840267027.tar.gz
arch-7bb6e0926b93898c79b0b1b5010eb18840267027.tar.bz2
added joe-4.6
-rw-r--r--archlinuxaba/joe/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/archlinuxaba/joe/PKGBUILD b/archlinuxaba/joe/PKGBUILD
new file mode 100644
index 0000000..e251e85
--- /dev/null
+++ b/archlinuxaba/joe/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Thomas Bächler <thomas@archlinux.org>
+pkgname=joe
+pkgver=4.6
+pkgrel=2
+pkgdesc="Joe's own editor"
+arch=('x86_64' 'aarch64' 'armv7h' 'armv6h' 'pentium4' 'i686' 'i486')
+url="https://joe-editor.sourceforge.io/"
+license=('GPL')
+depends=('ncurses')
+optdepends=('gpm: console mouse support')
+backup=('etc/joe/ftyperc' 'etc/joe/jicerc.ru' 'etc/joe/jmacsrc'
+ 'etc/joe/joerc' 'etc/joe/jpicorc' 'etc/joe/jstarrc' 'etc/joe/rjoerc')
+source=("https://downloads.sourceforge.net/joe-editor/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('495a0a61f26404070fe8a719d80406dc7f337623788e445b92a9f6de512ab9de')
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+ ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man
+ make
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+
+ make DESTDIR="${pkgdir}/" install
+}