Update PKGBUILD.proto to include a package() function

Relevant after we deprecated `makepkg -R` without a package() function being
present in the PKGBUILD.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2010-04-27 13:08:09 -05:00
parent 90aca75cb9
commit 8a6bbed98e

View file

@ -31,6 +31,9 @@ build() {
./configure --prefix=/usr
make || return 1
}
package() {
make DESTDIR="$pkgdir/" install
}