-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b9de1d
commit 9d89664
Showing
14 changed files
with
10 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-116 Bytes
(100%)
debs/com.pixeljellyfish.c0mebackf0lders_3.5_iphoneos-arm.deb
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
|
||
#!/bin/sh | ||
|
||
# postinst script for scan-packages | ||
find . -name '.DS_Store' -type f -delete | ||
|
||
|
||
#packages | ||
echo building package list | ||
# packages | ||
echo "Building package list" | ||
dpkg-scanpackages -m ./debs > Packages | ||
|
||
echo bzip compressing | ||
echo "Bzip compressing" | ||
bzip2 -5fkv Packages > Packages.bz2 | ||
|
||
echo xz compressing | ||
echo "XZ compressing" | ||
xz -5fkev Packages > Packages.xz | ||
|
||
echo lzma compressing | ||
xz -5fkev --format=lzma Packages > Packages.lzma | ||
echo "LZMA compressing" | ||
xz -5fkev --format=lzma Packages > Packages.lzma |