mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
testing/cc65: fix install dir
build with PREFIX=/usr and install with PREFIX="$pkgdir/usr"
This commit is contained in:
parent
82c90a81f8
commit
c2a512dade
@ -12,7 +12,7 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/cc65/cc65/archive/V$pkgver.t
|
|||||||
|
|
||||||
build() {
|
build() {
|
||||||
# the build system does not work in parallel
|
# the build system does not work in parallel
|
||||||
make -j1
|
PREFIX=/usr make -j1
|
||||||
}
|
}
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
@ -21,7 +21,7 @@ check() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
PREFIX="$pkgdir" make install
|
PREFIX="$pkgdir/usr" make install
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
|
Loading…
Reference in New Issue
Block a user