mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
Initial commit: version 1.6.3
This commit is contained in:
commit
f59aa8f771
2 changed files with 46 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
pkgbase = libexude
|
||||
pkgdesc = A simple to use memory debugger
|
||||
pkgver = 0.7.3
|
||||
pkgrel = 1
|
||||
url = https://opensource.conformal.com/wiki/exude
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = ISC
|
||||
makedepends = libclens=0.7.0
|
||||
makedepends = libclog=0.6.4
|
||||
makedepends = libbsd
|
||||
source = https://opensource.conformal.com/snapshots/exude/exude-0.7.3.tar.gz
|
||||
sha1sums = 90064deb9e6c0f98f72ed5c52acba074aa6d20f4
|
||||
|
||||
pkgname = libexude
|
||||
|
||||
30
PKGBUILD
Normal file
30
PKGBUILD
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#Maintainer: Dan Ziemba <zman0900@gmail.com>
|
||||
|
||||
pkgname=libexude
|
||||
pkgver=0.7.3
|
||||
pkgrel=1
|
||||
pkgdesc="A simple to use memory debugger"
|
||||
arch=(i686 x86_64)
|
||||
url="https://opensource.conformal.com/wiki/exude"
|
||||
license=(ISC)
|
||||
|
||||
makedepends=('libclens=0.7.0' 'libclog=0.6.4' 'libbsd')
|
||||
|
||||
source=(https://opensource.conformal.com/snapshots/exude/exude-$pkgver.tar.gz)
|
||||
sha1sums=('90064deb9e6c0f98f72ed5c52acba074aa6d20f4')
|
||||
|
||||
build() {
|
||||
cd "exude-$pkgver"
|
||||
mkdir -p obj
|
||||
export INCFLAGS=-idirafter/usr/include/bsd
|
||||
make LOCALBASE=/usr
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "exude-$pkgver"
|
||||
make LOCALBASE=/usr DESTDIR="$pkgdir" install
|
||||
|
||||
cd "$pkgdir"
|
||||
mv usr/share/man/man3/exude.3 usr/share/man/man3/libexude.3
|
||||
chmod 755 usr/lib/libexude.so.3.1
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue