aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/raw
Commit message (Expand)AuthorAgeFilesLines
* Temporary fix for #648Daniel Albert2014-06-251-0/+8
* Clarify help startDominik Schürmann2014-05-141-1/+1
* Add pgpauth app to help, update html-textviewDominik Schürmann2014-05-131-3/+4
* Add Tim Bray to aboutDominik Schürmann2014-05-091-0/+1
* Changelog 2.7Dominik Schürmann2014-05-081-0/+9
* Add applications section to helpDominik Schürmann2014-05-071-0/+5
* Version 2.6.1Dominik Schürmann2014-04-221-0/+5
* Small language corrections (thanks to yahoe.001)Dominik Schürmann2014-04-181-1/+1
* changelog 2.6Dominik Schürmann2014-04-171-0/+1
* Add faq entry for keyserver bug, closes #552Dominik Schürmann2014-04-171-0/+3
* essential instead of integralDominik Schürmann2014-04-161-1/+1
* Fix help_startDominik Schürmann2014-04-161-1/+1
* Start changelog for 2.6Dominik Schürmann2014-04-161-0/+8
* add web of trust help entryVincent Breitmoser2014-04-151-0/+21
* Rename folder structure from OpenPGP Keychain to OpenKeychainDominik Schürmann2014-04-066-0/+270
an> -z $pkg_dir ] || [ ! -d $pkg_dir ]; then echo "Usage: ipkg-make-index <package_directory>" >&2 exit 1 fi which md5sum >/dev/null 2>&1 || alias md5sum=md5 for pkg in `find $pkg_dir -name '*.ipk' | sort`; do name="${pkg##*/}" name="${name%%_*}" [[ "$name" = "kernel" ]] && continue [[ "$name" = "libc" ]] && continue echo "Generating index for package $pkg" >&2 file_size=$(ls -l $pkg | awk '{print $5}') md5sum=$(md5sum $pkg | awk '{print $1}') # Take pains to make variable value sed-safe sed_safe_pkg=`echo $pkg | sed -e 's/^\.\///g' -e 's/\\//\\\\\\//g'` tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\ Size: $file_size\\ MD5Sum: $md5sum\\ Description:/" echo "" done