Package Details: gpth-bin 3.4.3-1

Git Clone URL: https://aur.archlinux.org/gpth-bin.git (read-only, click to copy)
Package Base: gpth-bin
Description: Tool to help you with exporting stuff from Google Photos
Upstream URL: https://github.com/TheLastGimbus/GooglePhotosTakeoutHelper
Keywords: google,photos,takeout,export
Licenses: Apache
Conflicts: gpth
Provides: gpth
Submitter: TheLastGimbus
Maintainer: TheLastGimbus
Last Packager: TheLastGimbus
Votes: 3
Popularity: 0.67
First Submitted: 2022-12-17 21:03 (UTC)
Last Updated: 2023-09-24 02:24 (UTC)

Latest Comments

mutlu_inek commented on 2026-03-21 17:31 (UTC) (edited on 2026-03-21 17:36 (UTC) by mutlu_inek)

This is a great tool! :) There is a forked and much further developed version, however. See: https://github.com/Xentraxx/GooglePhotosTakeoutHelper_Neo

Here is a PKGBUILD I quickly whipped up for anyone interested in trying it out:

pkgname=gpth-neo-bin
pkgver=5.0.9
pkgrel=1
pkgdesc='Tool to help you with exporting stuff from Google Photos'
arch=('x86_64')
url='https://github.com/Xentraxx/GooglePhotosTakeoutHelper_Neo'
license=('Apache')
depends=(perl-image-exiftool)
provides=('gpth')
conflicts=('gpth')
options=('!strip')
source=("${url}/releases/download/v${pkgver}/gpth-v${pkgver}-release-linux-${arch}.zip")
sha256sums=('2dad8dce2f3280cc61013da463e962d46911dd7c5e1b6c143bde71d096fdfdad')
package() {
    install -Dm755 "gpth-v${pkgver}-release-linux-${arch}" "${pkgdir}/usr/bin/gpth-neo"
}