mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 18:29:23 +02:00
added third-party library
This commit is contained in:
parent
63405ceb46
commit
c3f88bd3d1
25 changed files with 5774 additions and 0 deletions
23
third-party/drag-sort-listview/tools/pkg-dslv.sh
vendored
Executable file
23
third-party/drag-sort-listview/tools/pkg-dslv.sh
vendored
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ ! $1 ]
|
||||
then
|
||||
echo "Need a version argument in the form of x.x.x"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
base="drag-sort-listview"
|
||||
dslvdir=$base-$1
|
||||
|
||||
if [ -d $dslvdir ]
|
||||
then
|
||||
rm -rf $dslvdir
|
||||
fi
|
||||
|
||||
git clone https://github.com/bauerca/drag-sort-listview.git $dslvdir
|
||||
rm -rf "${dslvdir}/.git"
|
||||
|
||||
tar -czf "${dslvdir}.tar.gz" $dslvdir
|
||||
zip -r "${dslvdir}.zip" $dslvdir
|
||||
|
||||
exit 0
|
Loading…
Add table
Add a link
Reference in a new issue