Compare commits
2 commits
a68a288f40
...
dc8fda670f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc8fda670f | ||
|
|
966f8422de |
2 changed files with 27 additions and 5 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
pkgbase = act-annotate-git
|
||||
pkgdesc = This package contains SPEF and SDF readers used to back-annotate an ACT design.
|
||||
pkgver = r40.500495e
|
||||
pkgrel = 1
|
||||
url = https://github.com/asyncvlsi/annotate
|
||||
arch = x86_64
|
||||
license = LGPL-2.1
|
||||
makedepends = git
|
||||
makedepends = make
|
||||
makedepends = gcc
|
||||
depends = act-core
|
||||
provides = act-annotate
|
||||
conflicts = act-annotate
|
||||
source = git+https://github.com/asyncvlsi/annotate
|
||||
sha512sums = SKIP
|
||||
|
||||
pkgname = act-annotate-git
|
||||
15
PKGBUILD
15
PKGBUILD
|
|
@ -5,7 +5,7 @@ pkgname=act-${_pkgname}-git
|
|||
_basever=0
|
||||
_patchlvl=1
|
||||
_gitversion=r40.500495e
|
||||
pkgver=${_basever}.${_patchlvl}.${_gitversion}
|
||||
pkgver=r40.500495e
|
||||
pkgrel=1
|
||||
pkgdesc="This package contains SPEF and SDF readers used to back-annotate an ACT design."
|
||||
arch=('x86_64')
|
||||
|
|
@ -31,15 +31,20 @@ package() {
|
|||
install -Dm644 ${srcdir}/${_pkgname}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
|
||||
export ACT_HOME="/opt/act-async"
|
||||
#mkdir -p ${pkgdir}/opt/act-async/conf/generic
|
||||
#mkdir -p ${pkgdir}/opt/act-async/include
|
||||
#mkdir -p ${pkgdir}/opt/act-async/lib
|
||||
mkdir -p ${pkgdir}/opt/act-async/bin
|
||||
mkdir -p ${pkgdir}/opt/act-async/conf/generic
|
||||
mkdir -p ${pkgdir}/opt/act-async/include/act
|
||||
mkdir -p ${pkgdir}/opt/act-async/lib
|
||||
|
||||
export LIBRARY_PATH=${pkgdir}/opt/act-async/lib
|
||||
|
||||
cd ${_pkgname}
|
||||
make install_inc INSTALL_OVERRIDE="${pkgdir}/opt/act-async/"
|
||||
make depend INSTALL_OVERRIDE="${pkgdir}/opt/act-async/"
|
||||
make INSTALL_OVERRIDE="${pkgdir}/opt/act-async/"
|
||||
make install INSTALL_OVERRIDE="${pkgdir}/opt/act-async/"
|
||||
|
||||
rm -rf ${pkgdir}/opt/act-async/act
|
||||
rm -rf ${pkgdir}/opt/act-async/conf
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue