forked from git-for-windows/MSYS2-packages
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
- Loading branch information
Showing
41 changed files
with
1,246 additions
and
442 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Maintainer: Matthias Aßhauer <mha1993@live.de> | ||
|
||
_realname=docx2txt | ||
|
||
pkgname=("${_realname}") | ||
pkgver=1.4 | ||
pkgrel=1 | ||
pkgdesc="docx2txt is a perl based command line utility to convert Microsoft Office(Tm) Docx documents to equivalent Text documents." | ||
arch=('i686' 'x86_64') | ||
license=('GPL3+') | ||
url="http://${_realname}.sourceforge.net/" | ||
source=("http://sourceforge.net/projects/${_realname}/files/${_realname}/v${pkgver}/${_realname}-${pkgver}.tgz/download") | ||
sha1sums=('a23f83ec5e1d479888815255e81063c02c932c2f') | ||
provides=('${_realname}') | ||
depends=('perl' 'unzip') | ||
|
||
package() { | ||
cd ${srcdir}/${_realname}-${pkgver} | ||
make BINDIR=$pkgdir/usr/bin installbin | ||
make CONFIGDIR=$pkgdir/etc installconfig | ||
mv -f $pkgdir/usr/bin/docx2txt.sh $pkgdir/usr/bin/docx2txt | ||
} |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Maintainer: Johannes Schindelin <johannes.schindelin@gmx.de> | ||
|
||
_realname=git-flow | ||
pkgname=("${_realname}") | ||
pkgver=0.4.1.108.g15aab26 | ||
pkgrel=1 | ||
pkgdesc="Git extensions to provide high-level repository operations for Vincent Driessen's branching model" | ||
arch=('i686' 'x86_64') | ||
license=('BSD') | ||
depends=('git' 'util-linux') | ||
url="http://nvie.com/posts/a-successful-git-branching-model/" | ||
source=("${_realname}"::"git+https://github.com/nvie/gitflow.git#branch=develop") | ||
sha1sums=('SKIP') | ||
|
||
pkgver() { | ||
cd "${srcdir}/${_realname}" | ||
|
||
# Need to create sane tags to allow `git describe` to work | ||
for t in $(git tag -l | grep '^[0-9]') | ||
do | ||
git rev-parse --quiet --verify v$t >/dev/null || | ||
git tag v$t $t^2 | ||
done | ||
|
||
git describe --tags | | ||
sed -e 's/^v//' -e 'y/-/./' | ||
} | ||
|
||
prepare () { | ||
cd "${srcdir}/${_realname}" | ||
|
||
git submodule update --init | ||
|
||
# Make sure that gitflow-shFlags is handled properly | ||
test true = "$(git config core.symlinks)" || { | ||
git config core.symlinks true | ||
git reset --hard | ||
} | ||
} | ||
|
||
package() { | ||
cd "${srcdir}/${_realname}" | ||
|
||
make prefix="${pkgdir}/usr/" install | ||
} |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.