diff options
author | Michał Wojdyła | 2022-07-27 01:29:58 +0200 |
---|---|---|
committer | Michał Wojdyła | 2022-07-27 01:29:58 +0200 |
commit | e9cc632326a8a8dc4ae7cd887792a000a512d8be (patch) | |
tree | 9c261788280a835e866cdcf0e251258620304d7f | |
download | aur-e9cc632326a8a8dc4ae7cd887792a000a512d8be.tar.gz |
initial upload
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..ca1bf03ed9f1 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = odpi + pkgdesc = Oracle Database Programming Interface for Drivers and Applications + pkgver = 4.4.1 + pkgrel = 1 + url = https://oracle.github.io/odpi/ + arch = x86_64 + license = UPL + license = Apache + depends = glibc + source = https://github.com/oracle/odpi/archive/refs/tags/v4.4.1.tar.gz + md5sums = d47b9436d05daa6cc879f763b22a27a1 + +pkgname = odpi diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..630ec08f27e8 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Michał Wojdyła < micwoj9292 at gmail dot com > +pkgname=odpi +pkgver=4.4.1 +pkgrel=1 +pkgdesc="Oracle Database Programming Interface for Drivers and Applications " +arch=(x86_64) +url="https://oracle.github.io/odpi/" +license=('UPL' 'Apache') +depends=('glibc') +source=("https://github.com/oracle/$pkgname/archive/refs/tags/v$pkgver.tar.gz") +md5sums=('d47b9436d05daa6cc879f763b22a27a1') +build() { + cd "$pkgname-$pkgver" + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir/" PREFIX="$pkgdir/usr/" install +} + |