Skip to content

Commit

Permalink
Add missing packages in travis_package.sh (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
devnoname120 committed Jun 2, 2017
1 parent 28e6c53 commit 5e9db67
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
6 changes: 4 additions & 2 deletions TinyGL/VITABUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ build() {

package () {
cd V$pkgname
make DESTDIR=$pkgdir install
}
mkdir -p $pkgdir/$prefix
cp -rf ./include $pkgdir/$prefix/
cp -rf ./lib $pkgdir/$prefix/
}
16 changes: 9 additions & 7 deletions kuio/VITABUILD
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
pkgname=kuio
pkgver=1.1
pkgver=9999
pkgrel=1
url="https://github.com/Rinnegatamante/kuio"
source=("https://github.com/Rinnegatamante/kuio/releases/download/${pkgver}/kuio.tar.gz")
sha256sums=('4e038c8d71ef451679bb39b0c6aa58580c155db70a60e81263c2103dd4fee097')
source=("git://github.com/Rinnegatamante/kuio.git")
sha256sums=('SKIP')

build() {
echo ""
cd $pkgname
mkdir build && cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=$VITASDK/share/vita.toolchain.cmake -DCMAKE_INSTALL_PREFIX=$prefix
make
}

package () {
mkdir -p $pkgdir/$prefix
cp -r include $pkgdir/$prefix
cp -r lib $pkgdir/$prefix
cd $pkgname/build
make DESTDIR=$pkgdir install
}
2 changes: 1 addition & 1 deletion mpg123/VITABUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pkgver=1.23.3
pkgrel=1
url="http://www.mpg123.de"
source=("http://www.mpg123.de/download/mpg123-${pkgver}.tar.bz2" "mpg123.patch")
sha256sums=('5c431da7e7446fae586c9207772dc0038ce2bfe75f0274a7933d1b4a7d84e6c6' '80f0075ae008e86c249a93cad896281162ec41f1940442257120d457e47335dd')
sha256sums=('5c431da7e7446fae586c9207772dc0038ce2bfe75f0274a7933d1b4a7d84e6c6' 'a1ecd2a792adf4023a5cf880bec1a5b2b6c56c5daf13837058abd2e3fc1af123')

prepare() {
patch -Np0 -i "${srcdir}/mpg123.patch"
Expand Down
5 changes: 4 additions & 1 deletion travis_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,7 @@ b unrar
b glm
b libxml2
b speexdsp
b pixman
b pixman
b TinyGL
b kuio
b mpg123

0 comments on commit 5e9db67

Please sign in to comment.