mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 07:00:28 +00:00
5fcf74eafe
This reverts commit 96d53109ac
.
27 lines
374 B
Plaintext
27 lines
374 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname="invalid-filename"
|
|
pkgver="1.0"
|
|
pkgrel=0
|
|
pkgdesc="Dummy test package that fails to build"
|
|
url="https://gitlab.alpinelinux.org/alpine/aports"
|
|
arch="noarch"
|
|
license="MIT"
|
|
|
|
prepare() {
|
|
mkdir -p "$builddir"
|
|
}
|
|
|
|
build() {
|
|
touch $'bad\nfile'
|
|
}
|
|
|
|
check() {
|
|
true
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
cp -r * "$pkgdir"/
|
|
}
|
|
|