mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
25 lines
568 B
Bash
25 lines
568 B
Bash
pkgname=nvidia-texture-tools
|
|
pkgver=2.1.1
|
|
pkgrel=1
|
|
pkgdesc="GPU-accelerated Texture Tools with support for DirectX 10 texture formats."
|
|
arch=('x86_64')
|
|
url="https://github.com/castano/nvidia-texture-tools"
|
|
license=('MIT')
|
|
depends=('libjpeg' 'libpng' 'libtiff' 'openexr')
|
|
makedepends=('cmake')
|
|
source=("https://github.com/castano/$pkgname/archive/$pkgver.tar.gz")
|
|
md5sums=('6b903bde11ee6252bcb8f1efd39843de')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr \
|
|
--release
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|