-
Notifications
You must be signed in to change notification settings - Fork 25
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
Showing
47 changed files
with
3,484 additions
and
2,454 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
_name="movie-monad" | ||
_ver="0.0.6.1" | ||
_xrev="0" | ||
|
||
pkgname="${_name}" | ||
pkgver="${_ver}_${_xrev}" | ||
pkgrel=1 | ||
pkgdesc="A free and simple to use video player made with Haskell." | ||
url="https://github.com/lettier/${_name}" | ||
license=("BSD3") | ||
arch=("x86_64") | ||
makedepends=() | ||
depends=("gtk3" "gstreamer" "gst-plugins-base-libs" "gst-plugins-base" "gst-plugins-good") | ||
options=() | ||
source=("https://www.github.com/lettier/${_name}/releases/download/${_ver}/${_name}-linux-${_ver}.tar.gz") | ||
sha256sums=("") | ||
|
||
package() { | ||
cd "${srcdir}/${_name}-linux-${_ver}" | ||
mkdir -p \ | ||
"${pkgdir}/opt/${_name}-linux-${_ver}/" \ | ||
"${pkgdir}/usr/bin/" \ | ||
"${pkgdir}/usr/share/applications/" \ | ||
"${pkgdir}/usr/share/icons/hicolor/scalable/apps/" | ||
cp -RP . "${pkgdir}/opt/${_name}-linux-${_ver}/" | ||
cp "./share/applications/com.lettier.${_name}.desktop" "${pkgdir}/usr/share/applications/" | ||
cp "./share/icons/hicolor/scalable/apps/com.lettier.${_name}.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/" | ||
ln -s "/opt/${_name}-linux-${_ver}/bin/${_name}" "${pkgdir}/usr/bin/${_name}" | ||
} |
55 changes: 55 additions & 0 deletions
55
packaging/linux/common/com.lettier.movie-monad.appdata.xml
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,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2017 David Lettier --> | ||
<component type="desktop-application"> | ||
<id>com.lettier.movie-monad.desktop</id> | ||
<metadata_license>CC-BY-SA-3.0</metadata_license> | ||
<project_license>BSD-3-Clause</project_license> | ||
<name>Movie Monad</name> | ||
<summary>A Free and Simple to use Video Player made with Haskell</summary> | ||
<description> | ||
<p> | ||
Movie Monad is a free and simple to use video player made with Haskell. | ||
You can play files on your computer or stream videos from the web. | ||
Movie Monad gets out of the way so you can watch the videos you love. | ||
Try it out. | ||
</p> | ||
</description> | ||
<launchable type="desktop-id">com.lettier.movie-monad.desktop</launchable> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<caption>The main Movie Monad window</caption> | ||
<image type="source" width="1024" height="780">https://i.imgur.com/vaXFxS0.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<url type="homepage">https://github.com/lettier/movie-monad</url> | ||
<provides> | ||
<binary>movie-monad</binary> | ||
</provides> | ||
<developer_name>David Lettier</developer_name> | ||
<categories> | ||
<category>AudioVideo</category> | ||
<category>Audio</category> | ||
<category>Video</category> | ||
</categories> | ||
<keywords> | ||
<keyword>Audio</keyword> | ||
<keyword>Video</keyword> | ||
<keyword>Player</keyword> | ||
<keyword>Multimedia</keyword> | ||
<keyword>Haskell</keyword> | ||
</keywords> | ||
<releases> | ||
<release version="0.0.6.1" date="2018-04-30"> | ||
<description> | ||
<p> | ||
Additions, changes, and removals: | ||
<ul> | ||
<li>Styles the info dialog</li> | ||
<li>Shows the top controls box when resetting the application</li> | ||
<li>Alerts the user about missing capabilities</li> | ||
</ul> | ||
</p> | ||
</description> | ||
</release> | ||
</releases> | ||
</component> |
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
File renamed without changes
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Oops, something went wrong.