Skip to content

Commit 58980de

Browse files
committed
multiple: initial commit.
1 parent de5fc15 commit 58980de

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed

packages/log4cpp/PKGBUILD

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ).
2+
# See COPYING for license details.
3+
4+
pkgname=log4cpp
5+
pkgver=1.1.4
6+
pkgrel=3
7+
pkgdesc='A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations.'
8+
arch=('x86_64' 'aarch64')
9+
url='http://log4cpp.sourceforge.net/'
10+
license=('LGPL')
11+
depends=('gcc-libs' 'libnsl')
12+
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
13+
sha512sums=('0cdbd46ccd048d70bea3c35d22080dc5dd21fc3b9c415fe464847e60775954f57e9c8344506f0f94f16e90e8bdaa9cc6d84d3aa65191501e52ee8dfc639f0398')
14+
15+
build() {
16+
cd $pkgname
17+
18+
./configure --prefix=/usr --disable-doxygen --disable-dot --without-idsa
19+
20+
make
21+
}
22+
23+
package() {
24+
cd $pkgname
25+
26+
make DESTDIR="$pkgdir" install
27+
}
28+

packages/sipcalc/PKGBUILD

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ).
2+
# See COPYING for license details.
3+
4+
pkgname=sipcalc
5+
pkgver=1.1.6
6+
pkgrel=6
7+
pkgdesc='An advanced console based ip subnet calculator.'
8+
arch=('x86_64' 'aarch64')
9+
url='https://www.routemeister.net/projects/sipcalc/'
10+
license=('BSD')
11+
depends=('glibc')
12+
source=("https://www.routemeister.net/projects/sipcalc/files/$pkgname-$pkgver.tar.gz")
13+
sha512sums=('9d2047a6fb6ef177d455f44abea19bab7d0131b16eb2444b2b074e94e776854fa74084ab625d2be9b64d136979ede71722c2e24dca12ff54e4a5bb02f947570e')
14+
15+
build() {
16+
cd "$pkgname-$pkgver"
17+
18+
./configure --prefix=/usr
19+
20+
make
21+
}
22+
23+
package() {
24+
cd "$pkgname-$pkgver"
25+
26+
make DESTDIR="$pkgdir/" install
27+
28+
install -Dm 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
29+
}
30+

0 commit comments

Comments
 (0)