Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
upgpkg: archiso 62.1-1: Upgrade to 62.1.
Browse files Browse the repository at this point in the history
Remove unneeded quotes and curly braces.
Simplify calls to make.

git-svn-id: file:///srv/repos/svn-packages/svn@441586 eb2447ed-0c53-47e4-bac8-5bc4a241df78
  • Loading branch information
dvzrv committed Apr 5, 2022
1 parent fb89568 commit f19195d
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions archiso/trunk/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Contributor: Gerardo Exequiel Pozzi <[email protected]>

pkgname=archiso
pkgver=62
pkgver=62.1
pkgrel=1
pkgdesc="Tools for creating Arch Linux live and install iso images"
arch=(any)
Expand All @@ -20,16 +20,15 @@ optdepends=(
)
source=("git+https://gitlab.archlinux.org/archlinux/archiso.git#tag=v${pkgver}?signed")
sha256sums=('SKIP')
validpgpkeys=('C7E7849466FE2358343588377258734B41C31549' # David Runge <[email protected]>
'BB8E6F1B81CF0BB301D74D1CBF425A01E68B38EF' # nl6720 <[email protected]>
)
validpgpkeys=(
'C7E7849466FE2358343588377258734B41C31549' # David Runge <[email protected]>
'BB8E6F1B81CF0BB301D74D1CBF425A01E68B38EF' # nl6720 <[email protected]>
)

check() {
cd "${pkgbase}"
make -k check
make -k check -C $pkgbase
}

package() {
cd "${pkgbase}"
make DESTDIR="${pkgdir}" PREFIX='/usr' install
make DESTDIR="$pkgdir" PREFIX=/usr install -C $pkgbase
}

0 comments on commit f19195d

Please sign in to comment.