Skip to content

Commit

Permalink
Merge pull request #180 from pspdev/add-stb
Browse files Browse the repository at this point in the history
Add stb single header libraries
  • Loading branch information
diamant3 authored Jul 15, 2024
2 parents 11d9ebb + 9f53595 commit 1101a1e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions stb/PSPBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
pkgname=stb
pkgver=20240714git
pkgrel=1
pkgdesc="a collection of single-file public domain libraries for C/C++"
arch=('any')
url="https://github.com/nothings/stb"
license=('Public-Domain or MIT')
groups=('pspdev-default')
depends=()
makedepends=()
optdepends=()
source=("git+https://github.com/nothings/stb.git#commit=013ac3beddff3dbffafd5177e7972067cd2b5083")
sha256sums=('SKIP')

package() {
cd "stb"
mkdir -m 755 -p "$pkgdir/psp/include/"
install -m 644 *.h "$pkgdir/psp/include/"

mkdir -m 755 -p "$pkgdir/psp/share/licenses/$pkgname"
install -m 644 LICENSE "$pkgdir/psp/share/licenses/$pkgname"
}

0 comments on commit 1101a1e

Please sign in to comment.