Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aur #38

Merged
merged 2 commits into from
Aug 12, 2018
Merged

Aur #38

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.vscode
cmd/debug.test
tempest.exe
tempest.exe
temp.est
101 changes: 101 additions & 0 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# Maintainer: ChacaS0 <chk-chaca@gmail.com>

pkgname=tempest
pkgver=0.1.1
pkgrel=1
pkgdesc="TEMPest is CLI tool to help manage temporary content"
arch=('x86_64' 'i686')
url="https://chacas0.github.io/tempest/"
license=('MIT')
depends=('git' 'go')
makedepends=('dep')
options=('!strip' '!emptydirs')
source=("https://github.com/ChacaS0/tempest/archive/v$pkgver.tar.gz")
sha256sums=('bd27d4ac125f6d4fd23061b3e24a15aefaa7538652ca4bc607bf18b374fb336b')
_gourl=github.com/ChacaS0/tempest

build() {
export GOROOT=/usr/lib/go

rm -rf build
mkdir -p build/go
cd build/go

for f in "$GOROOT/"*; do
ln -s "$f"
done

rm pkg
mkdir pkg
cd pkg

for f in "$GOROOT/pkg/"*; do
ln -s "$f"
done

platform=`for f in "$GOROOT/pkg/"*; do echo \`basename $f\`; done|grep linux`

rm -f "$platform"
mkdir "$platform"
cd "$platform"

for f in "$GOROOT/pkg/$platform/"*.h; do
ln -s "$f"
done

export GOROOT="$srcdir/build/go"
export GOPATH="$srcdir/build"

go get -fix "$_gourl"

# Prepare executable
if [ -d "$srcdir/build/src" ]; then
cd "$srcdir/build/src/$_gourl"
go build -o "$srcdir/build/$pkgname"
else
echo 'Old sources for a previous version of this package are already present!'
echo 'Build in a chroot or uninstall the previous version.'
return 1
fi
}

package() {
export GOROOT="$GOPATH"

# Package go package files
for f in "$srcdir/build/go/pkg/"* "$srcdir/build/pkg/"*; do
# If it's a directory
if [ -d "$f" ]; then
cd "$f"
mkdir -p "$pkgdir/$GOROOT/pkg/`basename $f`"
for z in *; do
# Check if the directory name matches
if [ "$z" == `echo $_gourl | cut -d/ -f1` ]; then
cp -r $z "$pkgdir/$GOROOT/pkg/`basename $f`"
fi
done
cd ..
fi
done

# Package source files
if [ -d "$srcdir/build/src" ]; then
mkdir -p "$pkgdir/$GOROOT/src/pkg"
cp -r "$srcdir/build/src/"* "$pkgdir/$GOROOT/src/pkg/"
find "$pkgdir" -depth -type d -name .git -exec rm -r {} \;
fi

# Package license (if available)
for f in LICENSE COPYING; do
if [ -e "$srcdir/build/src/$_gourl/$f" ]; then
install -Dm644 "$srcdir/build/src/$_gourl/$f" \
"$pkgdir/usr/share/licenses/$pkgname/$f"
fi
done

# Package executables
if [ -e "$srcdir/build/$pkgname" ]; then
install -Dm755 "$srcdir/build/$pkgname" \
"$pkgdir/usr/bin/$pkgname"
fi
}
25 changes: 13 additions & 12 deletions cmd/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
package cmd

import (
"os/exec"

"github.com/fatih/color"
"github.com/spf13/cobra"
)
Expand Down Expand Up @@ -55,18 +53,21 @@ func init() {
}

func launchDoc() {
pathReadme := pathTempest + "README.md"
// pathReadme := pathTempest + "README.md" // TEMP
// if no flag "man" added, open with Showdown
if !isMan {
commShowdown := exec.Command("showdown", pathReadme)
errorShowdown := commShowdown.Run()
if errorShowdown != nil {
// then showdown is not installed
color.HiCyan("::We recommand you to install Showdown to view this")
color.HiCyan("::For more information, please visit: https://github.com/craigbarnes/showdown")
// open in browser
openBrowser("file://" + pathReadme)
}
// TODO - improve that
// commShowdown := exec.Command("showdown", pathReadme)
// errorShowdown := commShowdown.Run()
// if errorShowdown != nil {
// // then showdown is not installed
// color.HiCyan("::We recommand you to install Showdown to view this")
// color.HiCyan("::For more information, please visit: https://github.com/craigbarnes/showdown")
// // open in browser
// openBrowser("file://" + pathReadme)
// }
// TEMP - replacement
openBrowser("https://chacas0.github.io/tempest/usage")
} else {
/* // Else open in man mode
comm := "cat " + pathReadme + " | less"
Expand Down