bye bye libressl
This commit is contained in:
parent
879ade0254
commit
4f387bcb0b
47 changed files with 963 additions and 37 deletions
28
gui/imagemagick/build.sh
Normal file
28
gui/imagemagick/build.sh
Normal file
|
@ -0,0 +1,28 @@
|
|||
pkgname=ImageMagick
|
||||
pkgver=7.1.0
|
||||
|
||||
fetch() {
|
||||
curl "https://download.imagemagick.org/ImageMagick/download/ImageMagick.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||
tar -xf $pkgname-$pkgver.tar.xz
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--build=$TRIPLE \
|
||||
--host=$TRIPLE
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make install DESTDIR=$pkgdir
|
||||
}
|
||||
|
||||
license() {
|
||||
cd $pkgname-$pkgver
|
||||
cat LICENSE
|
||||
# cat COPYING
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue