mirror of
https://github.com/libretro/Play-.git
synced 2025-02-24 21:50:58 +00:00
9 lines
242 B
Bash
Executable File
9 lines
242 B
Bash
Executable File
#/bin/bash
|
|
set -e
|
|
mkdir -p Play/Applications/Play.app
|
|
rsync -a ../build/Source/ui_ios/Release-iphoneos/Play.app/* Play/Applications/Play.app
|
|
chmod -R 775 Play
|
|
dpkg-deb -Zgzip -b Play
|
|
dpkg-scanpackages -m . /dev/null > Packages
|
|
bzip2 Packages
|